home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 00 / 5 / DISK0050.ZIP / FILEIO.C < prev    next >
Text File  |  1982-09-01  |  235b  |  17 lines

  1. #include "stdio.h"
  2. #include "ctype.h"
  3. #define TRUE 1
  4. #define FALSE 0
  5.  
  6.  
  7.  
  8. /* can be used for at most one character ptr argument */
  9.  errprnt(cs, arg)
  10.  char *cs, *arg;
  11.     {
  12.  fprintf( stderr, cs, arg);
  13.   fflush(stderr);
  14.     }
  15.  
  16.  
  17.